home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Communications / pop3d / pop3d.man < prev    next >
Text File  |  1995-04-04  |  2KB  |  63 lines

  1. POP3D (8)              UNIX Programmer's Manual             POP3D (8)
  2.  
  3.  
  4. NAME
  5.     pop3d  --  remote maildrop access server
  6.  
  7. SYNOPSIS
  8.     /usr/sbin/pop3d
  9.  
  10. DESCRIPTION
  11.     Pop3d is a mailbox server based on the Internet RFC1225,
  12.     Post Office Protocol Version 3. The program allows remote
  13.     access to UNIX maildrops found in /private/spool/mail. The
  14.     server requires user and password verification before a
  15.     maildrop can be opened. The server can retrieve and delete
  16.     messages from the maildrop on a per-message basis.
  17.  
  18.     Pop3d listens for TCP requests on port 110. Once connected
  19.     it expects single line commands terminated by a <CR-LF>.
  20.  
  21.     Pop3d currently supports the following POP3 commands; the
  22.     commands are case independent. In addition, the server
  23.     supports one extension command, HOST, which allows access
  24.     to BSMTP formatted maildrops in the directory /private/spool/pop.
  25.     The syntax for the HOST command is:   HOST <hostname>
  26.     Example:    HOST fennario.ucdavis.edu
  27.     this will open the file at /private/spool/pop/fennario.ucdavis.edu
  28.  
  29.     Command            Description
  30.     USER            specify user for maildrop access
  31.     PASS            specify password for maildrop access
  32.     STAT            give message count and size of maildrop
  33.     LIST            list size of individual messages
  34.     RETR            retrieve a message
  35.     DELE            delete a message
  36.     NOOP            do nothing, return a positive response
  37.     LAST            give highest message number accessed
  38.     RSET            unmark messages marked for deletion
  39.     TOP            retrieve part of a message
  40.     QUIT            terminate session
  41.  
  42.     The remaining optional command specified in RFC1225 (RPOP)
  43.     is not implemented.
  44.  
  45. FILES
  46.     /private/spool/mail/*    UNIX FromSPACE delimited maildrops
  47.     /private/spool/pop/*    BSMTP formatted maildrops
  48.  
  49. SEE ALSO
  50.     pop2d(8)
  51.  
  52. AUTHOR
  53.     Katie Stevens, dkstevens@ucdavis.edu
  54.     Information Technology -- Campus Access Point
  55.     University of California, Davis
  56.  
  57. NOTES
  58.     The POP3 standard supersedes Post Office Protocol Version 2
  59.     (POP2), described in RFC937.
  60.  
  61.  
  62.             August 29, 1990
  63.